home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / util / mews11 / mewinb3.mak < prev    next >
Text File  |  1992-08-16  |  3KB  |  202 lines

  1. .AUTODEPEND
  2.  
  3. # This makefile for Borland C 3.0 compiles MEWIN.EXE (with source-level
  4. # debugging information which you may want to remove with TDSTRIP)
  5. # Be advised that you need to change the path of the INCLUDE and LIB
  6. # directories to match their real location on your computer.
  7.  
  8. #        *Translator Definitions*
  9. CC = bcc +MEWIN.CFG
  10. TASM = TASM
  11. TLINK = tlink
  12. LIBPATH = C:\BC30\LIB
  13. INCLUDEPATH = C:\BC30\INCLUDE
  14.  
  15. #        *Implicit Rules*
  16. .c.obj:
  17.   $(CC) -c {$< }
  18.  
  19. .cpp.obj:
  20.   $(CC) -c {$< }
  21.  
  22. #        *List Macros*
  23. Link_Exclude =  \
  24.   mewin.res
  25.  
  26. Link_Include =  \
  27.   basic.obj \
  28.   bind.obj \
  29.   buffer.obj \
  30.   char.obj \
  31.   crypt.obj \
  32.   display.obj \
  33.   dolock.obj \
  34.   eval.obj \
  35.   exec.obj \
  36.   file.obj \
  37.   fileio.obj \
  38.   input.obj \
  39.   isearch.obj \
  40.   line.obj \
  41.   lock.obj \
  42.   main.obj \
  43.   mouse.obj \
  44.   random.obj \
  45.   region.obj \
  46.   screen.obj \
  47.   search.obj \
  48.   window.obj \
  49.   word.obj \
  50.   mswdisp.obj \
  51.   mswdrv.obj \
  52.   mswemacs.obj \
  53.   mswexec.obj \
  54.   mswfile.obj \
  55.   mswfont.obj \
  56.   mswinput.obj \
  57.   mswmem.obj \
  58.   mswmenu.obj \
  59.   mswsys.obj \
  60.   mewin.def
  61.  
  62. #        *Explicit Rules*
  63. MEWIN.exe: MEWIN.cfg $(Link_Include) $(Link_Exclude)
  64.   $(TLINK) /v/s/c/Twe/P-/L$(LIBPATH) @&&|
  65. c0wl.obj+
  66. basic.obj+
  67. bind.obj+
  68. buffer.obj+
  69. char.obj+
  70. crypt.obj+
  71. display.obj+
  72. dolock.obj+
  73. eval.obj+
  74. exec.obj+
  75. file.obj+
  76. fileio.obj+
  77. input.obj+
  78. isearch.obj+
  79. line.obj+
  80. lock.obj+
  81. main.obj+
  82. mouse.obj+
  83. random.obj+
  84. region.obj+
  85. screen.obj+
  86. search.obj+
  87. window.obj+
  88. word.obj+
  89. mswdisp.obj+
  90. mswdrv.obj+
  91. mswemacs.obj+
  92. mswexec.obj+
  93. mswfile.obj+
  94. mswfont.obj+
  95. mswinput.obj+
  96. mswmem.obj+
  97. mswmenu.obj+
  98. mswsys.obj
  99. MEWIN,MEWIN
  100. mathwl.lib+
  101. import.lib+
  102. cwl.lib
  103. mewin.def
  104. |
  105.   RC -T mewin.res MEWIN.exe
  106.  
  107.  
  108. #        *Individual File Dependencies*
  109. mewin.res: mewin.rc mswrid.h mswmenu.h mswmenu.rc mswfile.dlg mswabout.dlg \
  110.            mswfonts.dlg mswmodes.dlg mswprg.dlg mswmlh.dlg \
  111.            mswapp.ico mswscr.ico mswcur.cur mswnot.cur mswwait.ico \
  112.            mswgrin1.cur mswgrin2.cur mswgrin3.cur mswgrin4.cur \
  113.            mswgrin5.cur mswgrin6.cur mswgrin7.cur mswgrin8.cur
  114.     RC -R -I$(INCLUDEPATH) -FO mewin.res MEWIN.RC
  115.  
  116. basic.obj: basic.c 
  117.  
  118. bind.obj: bind.c 
  119.  
  120. buffer.obj: buffer.c 
  121.  
  122. char.obj: char.c 
  123.  
  124. crypt.obj: crypt.c 
  125.  
  126. display.obj: display.c 
  127.  
  128. dolock.obj: dolock.c 
  129.  
  130. eval.obj: eval.c 
  131.  
  132. exec.obj: exec.c 
  133.  
  134. file.obj: file.c 
  135.  
  136. fileio.obj: fileio.c 
  137.  
  138. input.obj: input.c 
  139.  
  140. isearch.obj: isearch.c 
  141.  
  142. line.obj: line.c 
  143.  
  144. lock.obj: lock.c 
  145.  
  146. main.obj: main.c 
  147.  
  148. mouse.obj: mouse.c 
  149.  
  150. random.obj: random.c 
  151.  
  152. region.obj: region.c 
  153.  
  154. screen.obj: screen.c 
  155.  
  156. search.obj: search.c 
  157.  
  158. window.obj: window.c 
  159.  
  160. word.obj: word.c 
  161.  
  162. mswdisp.obj: mswdisp.c 
  163.  
  164. mswdrv.obj: mswdrv.c 
  165.  
  166. mswemacs.obj: mswemacs.c 
  167.  
  168. mswexec.obj: mswexec.c 
  169.  
  170. mswfile.obj: mswfile.c 
  171.  
  172. mswfont.obj: mswfont.c 
  173.  
  174. mswinput.obj: mswinput.c 
  175.  
  176. mswmem.obj: mswmem.c 
  177.  
  178. mswmenu.obj: mswmenu.c 
  179.  
  180. mswsys.obj: mswsys.c 
  181.  
  182. #        *Compiler Configuration File*
  183. MEWIN.cfg: MEWIN.mak
  184.   copy &&|
  185. -ml
  186. -2
  187. -v
  188. -Os
  189. -d
  190. -WE
  191. -w-par
  192. -w-cpt
  193. -w-rng
  194. -w-pia
  195. -w-rvl
  196. -w-rpt
  197. -I$(INCLUDEPATH)
  198. -L$(LIBPATH)
  199. | MEWIN.cfg
  200.  
  201.  
  202.